    
:root {
    --bg-color: #f5f5f5; /* Match your website's background color */
    --font-family: 'Roboto', sans-serif; /* Match your website's font */
    --text-color: #333; /* Match your website's text color */
    --text-color-secondary: #666; /* Secondary text color */
    --primary-color: #f7b948; /* Your brand color */
    --hover-color: #d89c3a; /* Darker shade for hover */
    --padding: 2rem;
    --margin-bottom: 3rem;
    --button-padding: 0.5rem 1rem;
    --border-radius: 4px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;}

.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}



.currency-toggle {
    text-align: center;
    margin-bottom: 2rem;
}

.currency-toggle button {
    padding: var(--button-padding);
    font-size: 1rem;
    border: 1px solid var(--primary-color);
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.currency-toggle button.active {
    background: var(--primary-color);
    color: white;
}

.currency-toggle button:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.currency-toggle button:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.card {
    background: white;
    border-radius: 8px;
    padding: var(--padding);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.card.popular:hover {
    transform: scale(1.07);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: var(--button-padding);
    border-radius: 20px;
    font-size: 0.875rem;
}

.card h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.price.animate {
    animation: pricePulse 0.5s ease;
}

@keyframes pricePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.price small {
    font-size: 1rem;
    color: var(--text-color-secondary);
}

.features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.features li:hover {
    transform: translateX(5px);
}

.features li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(100, 100);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .card.popular {
        transform: none;
    }

    .card {
        min-height: auto;
    }
}



.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(5px);
/* Center alignment */
display: none;
align-items: center;
justify-content: center;
}

.modal-content {
background: white;
padding: 2rem;
width: 90%;
max-width: 600px;
border-radius: 12px;
position: relative;
margin: 0 auto;
}


.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
}

.close:hover {
    color: var(--primary-color);
}

.modal h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--text-color);
}

.modal .form-group {
    margin-bottom: 1.5rem;
}

.modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.modal .form-group input,
.modal .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 1rem;
    background-color: #f8f9fa;
    transition: var(--transition);
}

.modal .form-group textarea {
    height: 150px;
    resize: none;
}

.modal .form-group input:focus,
.modal .form-group textarea:focus {
    outline: none;
    border-color: var(--hover-color);
    box-shadow: 0 0 0 3px rgba(247, 185, 72, 0.2);
    background-color: #fff;
}

.modal .send__btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal .send__btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}
